progressbar: Remove useless if statement
authorTimm Bäder <mail@baedert.org>
Mon, 20 Mar 2017 08:22:13 +0000 (09:22 +0100)
committerTimm Bäder <mail@baedert.org>
Mon, 20 Mar 2017 11:47:42 +0000 (12:47 +0100)
Both the if and the else block contained exactly the same code.

gtk/gtkprogressbar.c

index ac4fc00187879bf3d2573141296a87f7be374aaf..f13f90d235ddb58c995d6d5cb62136d8014575a0 100644 (file)
@@ -1026,12 +1026,10 @@ gtk_progress_bar_act_mode_enter (GtkProgressBar *pbar)
 {
   GtkProgressBarPrivate *priv = pbar->priv;
   GtkWidget *widget = GTK_WIDGET (pbar);
-  GtkOrientation orientation;
   gboolean inverted;
 
   gtk_css_gadget_add_class (priv->progress_gadget, GTK_STYLE_CLASS_PULSE);
 
-  orientation = priv->orientation;
   inverted = priv->inverted;
   if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL)
     {
@@ -1040,32 +1038,15 @@ gtk_progress_bar_act_mode_enter (GtkProgressBar *pbar)
     }
 
   /* calculate start pos */
-
-  if (orientation == GTK_ORIENTATION_HORIZONTAL)
+  if (!inverted)
     {
-      if (!inverted)
-        {
-          priv->activity_pos = 0.0;
-          priv->activity_dir = 0;
-        }
-      else
-        {
-          priv->activity_pos = 1.0;
-          priv->activity_dir = 1;
-        }
+      priv->activity_pos = 0.0;
+      priv->activity_dir = 0;
     }
   else
     {
-      if (!inverted)
-        {
-          priv->activity_pos = 0.0;
-          priv->activity_dir = 0;
-        }
-      else
-        {
-          priv->activity_pos = 1.0;
-          priv->activity_dir = 1;
-        }
+      priv->activity_pos = 1.0;
+      priv->activity_dir = 1;
     }
 
   update_node_classes (pbar);